b57cd6d092aee50752e70f7361db963d97ed14fc,src/main/java/org/codehaus/mojo/jaxb2/schemageneration/AbstractXsdGeneratorMojo.java,AbstractXsdGeneratorMojo,getSchemaGeneratorSourceFiles,#List#,589
Before Change
// Find the Java class(es) within the source.
final JavaProjectBuilder builder = new JavaProjectBuilder();
builder.addSource(sourceCodeFile);
builder.setEncoding(getEncoding(true));
// Map any found FQCN to the relativized path of its source file.
for (JavaSource currentJavaSource : builder.getSources()) {
After Change
// Find the Java class(es) within the source.
final JavaProjectBuilder builder = new JavaProjectBuilder();
builder.setEncoding(encoding);
//
// Ensure that we include package-info.java classes in the SchemaGen compilation.